crypto/internal/fips140/ecdsa.hmacDRBG.hK (field)

12 uses

	crypto/internal/fips140/ecdsa (current package)
		hmacdrbg.go#L24: 	hK *hmac.HMAC
		hmacdrbg.go#L114: 	d.hK = h
		hmacdrbg.go#L152: 		d.hK.Reset()
		hmacdrbg.go#L153: 		d.hK.Write(d.V)
		hmacdrbg.go#L154: 		d.V = d.hK.Sum(d.V[:0])
		hmacdrbg.go#L164: 	d.hK.Reset()
		hmacdrbg.go#L165: 	d.hK.Write(d.V)
		hmacdrbg.go#L166: 	d.hK.Write([]byte{0x00})
		hmacdrbg.go#L167: 	K := d.hK.Sum(nil)
		hmacdrbg.go#L169: 	d.hK = d.newHMAC(K)
		hmacdrbg.go#L170: 	d.hK.Write(d.V)
		hmacdrbg.go#L171: 	d.V = d.hK.Sum(d.V[:0])